找传奇、传世资源到传世资源站!

WPF实现文字语音播报

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

文本转语音,人声播报,如下图,点击Speak按钮 即可播报 找例子网
from clipboard
public class SpeakHelper { // public static SpeechSynthesizer Synth = new SpeechSynthesizer(); public static SpeechSynthesizer Synth; private static Thread _thread; private static string _contentThread; /// <summary> /// 文本转语音 /// </summary> /// <param name="content">文本内容</param> public static void SpeekContent(string content) { _contentThread = content; _thread = new Thread(SpeakContentThread); _thread.IsBackground = true; _thread.Start(); } private static void SpeakContentThread() { try { if (Synth != null) { Synth.Dispose(); } Synth = new SpeechSynthesizer(); Synth.Rate = -1; Synth.Speak(_contentThread); } catch (Exception) { } } //停止播放 public static void StopSpeak() { try { if (Synth != null) { Synth.Dispose();//释放 SpeechSynthesizer 在会话期间使用的对象并释放资源 } if (_thread != null) { _thread.Abort();//终止线程 } } catch (Exception) { } } }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复